summaryrefslogtreecommitdiffstats
path: root/src/android/app/src/main/java/org/yuzu/yuzu_emu/features/settings/model/view/SliderSetting.java
blob: 8ac25b66edcdfe5e58627fd4859eb46d28fd452d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
package org.yuzu.yuzu_emu.features.settings.model.view;

import org.yuzu.yuzu_emu.features.settings.model.FloatSetting;
import org.yuzu.yuzu_emu.features.settings.model.IntSetting;
import org.yuzu.yuzu_emu.features.settings.model.Setting;
import org.yuzu.yuzu_emu.utils.Log;

public final class SliderSetting extends SettingsItem {
    private int mMin;
    private int mMax;
    private int mDefaultValue;

    private String mUnits;

    public SliderSetting(String key, String section, int titleId, int descriptionId,
                         int min, int max, String units, int defaultValue, Setting setting) {
        super(key, section, setting, titleId, descriptionId);
        mMin = min;
        mMax = max;
        mUnits = units;
        mDefaultValue = defaultValue;
    }

    public int getMin() {
        return mMin;
    }

    public int getMax() {
        return mMax;
    }

    public int getDefaultValue() {
        return mDefaultValue;
    }

    public int getSelectedValue() {
        Setting setting = getSetting();

        if (setting == null) {
            return mDefaultValue;
        }

        if (setting instanceof IntSetting) {
            IntSetting intSetting = (IntSetting) setting;
            return intSetting.getValue();
        } else if (setting instanceof FloatSetting) {
            FloatSetting floatSetting = (FloatSetting) setting;
            return Math.round(floatSetting.getValue());
        } else {
            Log.error("[SliderSetting] Error casting setting type.");
            return -1;
        }
    }

    /**
     * Write a value to the backing int. If that int was previously null,
     * initializes a new one and returns it, so it can be added to the Hashmap.
     *
     * @param selection New value of the int.
     * @return null if overwritten successfully otherwise; a newly created IntSetting.
     */
    public IntSetting setSelectedValue(int selection) {
        if (getSetting() == null) {
            IntSetting setting = new IntSetting(getKey(), getSection(), selection);
            setSetting(setting);
            return setting;
        } else {
            IntSetting setting = (IntSetting) getSetting();
            setting.setValue(selection);
            return null;
        }
    }

    /**
     * Write a value to the backing float. If that float was previously null,
     * initializes a new one and returns it, so it can be added to the Hashmap.
     *
     * @param selection New value of the float.
     * @return null if overwritten successfully otherwise; a newly created FloatSetting.
     */
    public FloatSetting setSelectedValue(float selection) {
        if (getSetting() == null) {
            FloatSetting setting = new FloatSetting(getKey(), getSection(), selection);
            setSetting(setting);
            return setting;
        } else {
            FloatSetting setting = (FloatSetting) getSetting();
            setting.setValue(selection);
            return null;
        }
    }

    public String getUnits() {
        return mUnits;
    }

    @Override
    public int getType() {
        return TYPE_SLIDER;
    }
}